| TableServer Methods |
The TableServer type exposes the following members.
| Name | Description | |
|---|---|---|
|
|
Automatic_Network_Search |
Static Public Function for Automatic Network Search for Slab Connected(Execution time 5 to 10 minutes and it's depend on network speed).
this function return type is List of Ip address String.
Foreach(string s in TableServer.AutomaticNetworkSearch()) {Console.WriteLine(s); }; |
|
|
calcul_Medium_point |
public Function to calculate the medium point of list of points.
the List of points objects. this function return type is Point Object Type.
|
|
|
Configure_Slabs_Paratmers |
Private Function for automatic setting by sending comands for each Slab on the tangible table (IP server, detection Mode... etc).
this function return type is void.
|
|
|
Configure_Slabs_Positions |
Private Function for initializing Slabs positions on the tangible table.
this function return type is void.
|
|
|
Configure_Slabs_XML |
private Function for reading Slabs Ip from XML file.
this function return type is void .
|
|
|
Dispose |
public Function to Liberate All Resources and clean everything.
this function return type is void.
|
|
|
Get_Tag_Position |
Private Function to get a position of tag from his ID Value.
the string value Tag RFID Identificator. this function return type is tag Object Type.
|
|
|
initilize_Class_Members |
this function will inisialize all class members (buffers, objects, Network listeners ... etc).
this function return type is void
|
|
|
On_Tags_Leaving |
Virtual Function for Tags leaving (User must write his own function).
the tag object that rise the event.the event rised by the sender. this function return type is void.
|
|
|
On_Tags_Moving |
Virtual Function for Tags Moving (User must write his own function).
the tag object that rise the event. the event rised by the sender. this function return type is void.
|
|
|
Run |
private Function for performing the listening on Network Broadcast tangible frames.
this function return type is void .
|
|
|
Send_Command |
Public Function to send a simple Tangible Command to a Single Slab.
the string value of the Slab IP address.the string value of the Tangible Command. this function return type is Response Object Type.
TableServer tab= new TableServer(); tab.SendCommand("192.186.1.101","mode:1"); |
|
|
Start |
Public Function for Start Listening on Network for Broadcast tangible frames.
this function return type is void.
TableServer tab=new tableServer(); tab.start(); |
|
|
Stop |
Public Function for Stop Listening on Network for Broadcast tangible frames.
this function return type is void.
TableServer tab=new tableServer(); tab.start(); tab.Stop() |